home *** CD-ROM | disk | FTP | other *** search
- #pragma once
- /*****
- *
- * StringUtil.h
- *
- * This is a support file for "Grant's CGI Framework".
- * Please see the license agreement that accompanies the distribution package
- * for licensing details.
- *
- * Copyright ©1995,1996 by Grant Neufeld
- * grant@acm.com
- * http://arpp.carleton.ca/grant/
- *
- *****/
-
- #include "compiler_stuff.h"
-
- /*** FUNCTION PROTOTYPES ***/
-
- void StringPascalCopy ( char *, char * );
- long StringCountChar ( char *, char );
- Boolean StringConvertCharToChar ( char *, char /*from*/, char /*to*/ );
-
- void StringDrawInRect ( StringPtr, Rect );
- long StringDrawTextInRect ( char *, long, Rect );
-
- /* since TPM doesn't seem to handle strchr properly... */
- #if kCompiling_For_Symantec
- char * StringChar ( const char *, unsigned char );
- #else
- #define StringChar(theString,theChar) strchr((theString),(theChar))
- #endif
-
-
- /*** EOF ***/
-